stage.set_background("moon")
sprite = codesters.Sprite("alien1")
sprite.go_to(-175, -150)
net = codesters.Sprite("basketballnet")
net.go_to(215, 175)
instructions = codesters.Text("Click on the sprite to shoot the basketball. Hit the basket to score a point!")
instructions.go_to(0, 50)
instructions.set_color("white")
stage.set_gravity(10)
sprite.set_gravity_off()
def click(sprite):
ball = codesters.Sprite("basketball")
ball.go_to(-175, -125)
ball.set_x_speed(10)
ball.set_y_speed(10)
# add other actions...
sprite.event_click(click)
stage.disable_right_wall()
def collision(net, hit_sprite):
my_var = hit_sprite.get_image_name()
if my_var == "basketball":
sprite.say("Score!")
hit_sprite.hide()
# add any other actions...
net.event_collision(collision)
t = codesters.Teacher()
try:
tval1 = score
tval2 = t.get_indent_at_line(t.find_text("score="))
except:
tval1 = "DNE"
tval2 = "DNE"
t1 = TestObjective()
t1.add_success(tval1 == 0, "Great job!")
t1.add_failure(tval1 == 25, "Did you change the number to the right of the = sign from 25 to 0?")
t1.add_failure(tval1 == "DNE", "Did you drag in Integer Variable and rename it score?")
t1.add_failure(tval1 != 0, "Oops! Did you change the number to the right of the = sign to 0?")
t2 = TestObjective()
t2.add_success(tval2 == 0, "Great job!")
t2.add_failure(tval2 > 0, 'Oops! Did you indent your score variable too many times?')
t2.add_failure(tval2 == "DNE", 'Did you drag in Integer Variable and rename it score?')
tester = TestManager()
tester.add_test_list([t1])
tester.run_tests()
tester.display_first_feedback()
-
Run Code
-
Activity Submitted!
Submit Work
-
Next Activity
-
Stop Running Code
-
Show Chart
-
Show Console
-
Reset Code Editor
-
Codesters How To (opens in a new tab)